home *** CD-ROM | disk | FTP | other *** search
/ Hot Super Models / Hot Super Models.iso / unix / x11 / xv2r1.tar / xv2r1 / server / ddx / cfb32 / cfbpntwin.c < prev    next >
C/C++ Source or Header  |  1991-09-25  |  8KB  |  350 lines

  1. /***********************************************************
  2. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  3. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Digital or MIT not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.  
  14.  
  15. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. #include "X.h"
  26.  
  27. #include "windowstr.h"
  28. #include "regionstr.h"
  29. #include "pixmapstr.h"
  30. #include "scrnintstr.h"
  31.  
  32. #include "cfb.h"
  33. #include "cfbmskbits.h"
  34.  
  35. static void cfbPaintArea32(), cfbPaintAreaSolid();
  36.  
  37. extern void miPaintWindow();
  38.  
  39. void
  40. cfbPaintWindow(pWin, pRegion, what)
  41.     WindowPtr    pWin;
  42.     RegionPtr    pRegion;
  43.     int        what;
  44. {
  45.     register cfbPrivWin    *pPrivWin;
  46.  
  47.     pPrivWin = (cfbPrivWin *)(pWin->devPrivates[cfbWindowPrivateIndex].ptr);
  48.  
  49.     switch (what) {
  50.     case PW_BACKGROUND:
  51.     switch (pWin->backgroundState) {
  52.     case None:
  53.         return;
  54.     case ParentRelative:
  55.         do {
  56.         pWin = pWin->parent;
  57.         } while (pWin->backgroundState == ParentRelative);
  58.         (*pWin->drawable.pScreen->PaintWindowBackground)(pWin, pRegion,
  59.                                  what);
  60.         return;
  61.     case BackgroundPixmap:
  62.         if (pPrivWin->fastBackground)
  63.         {
  64.         cfbFillBoxTile32 ((DrawablePtr)pWin,
  65.                   (int)REGION_NUM_RECTS(pRegion),
  66.                   REGION_RECTS(pRegion),
  67.                   pPrivWin->pRotatedBackground);
  68.         return;
  69.         }
  70.         else
  71.         {
  72.         cfbFillBoxTileOdd ((DrawablePtr)pWin,
  73.                    (int)REGION_NUM_RECTS(pRegion),
  74.                    REGION_RECTS(pRegion),
  75.                    pWin->background.pixmap,
  76.                    (int) pWin->drawable.x, (int) pWin->drawable.y);
  77.         return;
  78.         }
  79.         break;
  80.     case BackgroundPixel:
  81.         cfbFillBoxSolid ((DrawablePtr)pWin,
  82.                  (int)REGION_NUM_RECTS(pRegion),
  83.                  REGION_RECTS(pRegion),
  84.                  pWin->background.pixel);
  85.         return;
  86.         }
  87.         break;
  88.     case PW_BORDER:
  89.     if (pWin->borderIsPixel)
  90.     {
  91.         cfbFillBoxSolid ((DrawablePtr)pWin,
  92.                  (int)REGION_NUM_RECTS(pRegion),
  93.                  REGION_RECTS(pRegion),
  94.                  pWin->border.pixel);
  95.         return;
  96.     }
  97.     else if (pPrivWin->fastBorder)
  98.     {
  99.         cfbFillBoxTile32 ((DrawablePtr)pWin,
  100.                   (int)REGION_NUM_RECTS(pRegion),
  101.                   REGION_RECTS(pRegion),
  102.                   pPrivWin->pRotatedBorder);
  103.         return;
  104.     }
  105.     else if (pWin->border.pixmap->drawable.width >= PPW/2)
  106.     {
  107.         cfbFillBoxTileOdd ((DrawablePtr)pWin,
  108.                    (int)REGION_NUM_RECTS(pRegion),
  109.                    REGION_RECTS(pRegion),
  110.                    pWin->border.pixmap,
  111.                    (int) pWin->drawable.x, (int) pWin->drawable.y);
  112.         return;
  113.     }
  114.     break;
  115.     }
  116.     miPaintWindow (pWin, pRegion, what);
  117. }
  118.  
  119. /*
  120.  * Use the RROP macros in copy mode
  121.  */
  122.  
  123. #define RROP GXcopy
  124. #include "cfbrrop.h"
  125.  
  126. #ifdef RROP_UNROLL
  127. # define Expand(left,right,leftAdjust) {\
  128.     int part = nmiddle & RROP_UNROLL_MASK; \
  129.     int widthStep; \
  130.     widthStep = widthDst - nmiddle - leftAdjust; \
  131.     nmiddle >>= RROP_UNROLL_SHIFT; \
  132.     while (h--) { \
  133.     left \
  134.     pdst += part; \
  135.     switch (part) { \
  136.         RROP_UNROLL_CASE(pdst) \
  137.     } \
  138.     m = nmiddle; \
  139.     while (m) { \
  140.         pdst += RROP_UNROLL; \
  141.         RROP_UNROLL_LOOP(pdst) \
  142.         m--; \
  143.     } \
  144.     right \
  145.     pdst += widthStep; \
  146.     } \
  147. }
  148.  
  149. #else
  150. # define Expand(left, right, leftAdjust) { \
  151.     int widthStep; \
  152.     widthStep = widthDst - nmiddle - leftAdjust; \
  153.     while (h--) { \
  154.     left \
  155.     m = nmiddle; \
  156.     while (m--) {\
  157.         RROP_SOLID(pdst); \
  158.         pdst++; \
  159.     } \
  160.     right \
  161.     pdst += widthStep; \
  162.     } \
  163. }
  164. #endif
  165.  
  166. void
  167. cfbFillBoxSolid (pDrawable, nBox, pBox, pixel)
  168.     DrawablePtr        pDrawable;
  169.     int            nBox;
  170.     BoxPtr        pBox;
  171.     unsigned long   pixel;
  172. {
  173.     unsigned long   *pdstBase;
  174.     int            widthDst;
  175.     register int    h;
  176.     register unsigned long   rrop_xor;
  177.     register unsigned long   *pdst;
  178.     register unsigned long   leftMask, rightMask;
  179.     int            nmiddle;
  180.     register int    m;
  181.     int            w;
  182.  
  183.     cfbGetLongWidthAndPointer(pDrawable, widthDst, pdstBase);
  184.  
  185.     rrop_xor = PFILL(pixel);
  186.     for (; nBox; nBox--, pBox++)
  187.     {
  188.         pdst = pdstBase + pBox->y1 * widthDst;
  189.         h = pBox->y2 - pBox->y1;
  190.     w = pBox->x2 - pBox->x1;
  191. #if PPW == 4
  192.     if (w == 1)
  193.     {
  194.         register char    *pdstb = ((char *) pdst) + pBox->x1;
  195.         int        incr = widthDst << 2;
  196.  
  197.         while (h--)
  198.         {
  199.         *pdstb = rrop_xor;
  200.         pdstb += incr;
  201.         }
  202.     }
  203.     else
  204.     {
  205. #endif
  206.     pdst += (pBox->x1 >> PWSH);
  207.     if ((pBox->x1 & PIM) + w <= PPW)
  208.     {
  209.         maskpartialbits(pBox->x1, w, leftMask);
  210.         while (h--) {
  211.         *pdst = (*pdst & ~leftMask) | (rrop_xor & leftMask);
  212.         pdst += widthDst;
  213.         }
  214.     }
  215.     else
  216.     {
  217.         maskbits (pBox->x1, w, leftMask, rightMask, nmiddle);
  218.         if (leftMask)
  219.         {
  220.         if (rightMask)
  221.         {
  222.             Expand (RROP_SOLID_MASK (pdst, leftMask); pdst++; ,
  223.                 RROP_SOLID_MASK (pdst, rightMask); ,
  224.                 1)
  225.         }
  226.         else
  227.         {
  228.             Expand (RROP_SOLID_MASK (pdst, leftMask); pdst++;,
  229.                 ;,
  230.                 1)
  231.         }
  232.         }
  233.         else
  234.         {
  235.         if (rightMask)
  236.         {
  237.             Expand (;,
  238.                 RROP_SOLID_MASK (pdst, rightMask);,
  239.                 0)
  240.         }
  241.         else
  242.         {
  243.             Expand (;,
  244.                 ;,
  245.                 0)
  246.         }
  247.         }
  248.     }
  249. #if PPW == 4
  250.     }
  251. #endif
  252.     }
  253. }
  254.  
  255. void
  256. cfbFillBoxTile32 (pDrawable, nBox, pBox, tile)
  257.     DrawablePtr        pDrawable;
  258.     int            nBox;    /* number of boxes to fill */
  259.     BoxPtr         pBox;    /* pointer to list of boxes to fill */
  260.     PixmapPtr        tile;    /* rotated, expanded tile */
  261. {
  262.     register unsigned long  rrop_xor;    
  263.     register unsigned long  *pdst;
  264.     register int        m;
  265.     int                *psrc;
  266.     int                tileHeight;
  267.  
  268.     int                widthDst;
  269.     int                w;
  270.     int                h;
  271.     register unsigned long  leftMask;
  272.     register unsigned long  rightMask;
  273.     int                nmiddle;
  274.     int                y;
  275.     int                srcy;
  276.  
  277.     unsigned long        *pdstBase;
  278.  
  279.     tileHeight = tile->drawable.height;
  280.     psrc = (int *)tile->devPrivate.ptr;
  281.  
  282.     cfbGetLongWidthAndPointer (pDrawable, widthDst, pdstBase);
  283.  
  284.     while (nBox--)
  285.     {
  286.     w = pBox->x2 - pBox->x1;
  287.     h = pBox->y2 - pBox->y1;
  288.     y = pBox->y1;
  289.     pdst = pdstBase + (pBox->y1 * widthDst) + (pBox->x1 >> PWSH);
  290.     srcy = y % tileHeight;
  291.  
  292. #define StepTile    rrop_xor = psrc[srcy]; \
  293.             ++srcy; \
  294.             if (srcy == tileHeight) \
  295.                 srcy = 0;
  296.  
  297.     if ( ((pBox->x1 & PIM) + w) < PPW)
  298.     {
  299.         maskpartialbits(pBox->x1, w, leftMask);
  300.         rightMask = ~leftMask;
  301.         while (h--)
  302.         {
  303.         StepTile
  304.         *pdst = (*pdst & rightMask) | (rrop_xor & leftMask);
  305.         pdst += widthDst;
  306.         }
  307.     }
  308.     else
  309.     {
  310.         maskbits(pBox->x1, w, leftMask, rightMask, nmiddle);
  311.  
  312.         if (leftMask)
  313.         {
  314.         if (rightMask)
  315.         {
  316.             Expand (StepTile
  317.                 RROP_SOLID_MASK(pdst, leftMask); pdst++;,
  318.                 RROP_SOLID_MASK(pdst, rightMask);,
  319.                 1)
  320.         }
  321.         else
  322.         {
  323.             Expand (StepTile
  324.                 RROP_SOLID_MASK(pdst, leftMask); pdst++;,
  325.                 ,
  326.                 1)
  327.         }
  328.         }
  329.         else
  330.         {
  331.         if (rightMask)
  332.         {
  333.             Expand (StepTile
  334.                 ,
  335.                 RROP_SOLID_MASK(pdst, rightMask);,
  336.                 0)
  337.         }
  338.         else
  339.         {
  340.             Expand (StepTile
  341.                 ,
  342.                 ,
  343.                 0)
  344.         }
  345.         }
  346.     }
  347.         pBox++;
  348.     }
  349. }
  350.